[USER (data scientist)]: What is the distribution of property prices in Flemington, Australia? Show me histogram plot of property prices to visualize the distribution. Please generate a histogram to visualize the distribution of property prices in Flemington, Australia, using the 'melbourne_housing' dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import matplotlib.pyplot as plt
import pandas as pd
import pickle

melbourne_housing = pd.read_csv("melb_data.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

plt.savefig('./pred_result/bar_chart.png')
plt.show()

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure, I can help you with that.